home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 23 / CU Amiga - Super CD-ROM 23 (June 1998).iso / CreatingGames / Utilities / C / GBDK / include / graphics.h next >
Encoding:
C/C++ Source or Header  |  1996-04-03  |  242 b   |  15 lines

  1. #define    AND    0
  2. #define    OR    1
  3. #define    XOR    2
  4. #define    SOLID    3
  5.  
  6. #define    WHITE    0
  7. #define    LTGREY    1
  8. #define    DKGREY    2
  9. #define    BLACK    3
  10.  
  11. void    plot(int x, int y, int color, int mode);
  12. void    draw_image(unsigned char *data);
  13. /* image size = (0x80, 0x78)
  14.  */
  15.